:root {
  --primary-color: #252839;
  --secondary-color: #2b2e3f;
  --border-color: #4b4e5f;
  --text-color1: #fefefe;
  --text-color2: #f6f6f6;
  --shadow: rgba(0, 0, 0, 0.5);
  --online-status: #31cc46;
  --themes: #4b4e5f;
}

/* Color picker */
.color-picker > fieldset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
}
.color-picker input[type="radio"] {
  appearance: none;
  width: clamp(1rem, 1.5vw, 2rem);
  height: clamp(1rem, 1.5vw, 2rem);
  padding: 0;
  margin: 0;
  border-radius: 50%;
  outline: 3px solid var(--radio-color, currentColor);
  outline-offset: 3px;
}
.color-picker input[type="radio"]:checked {
  background-color: var(--radio-color);
}
.color-picker input[type="radio"]#red {
  --radio-color: #ec4555;
}
.color-picker input[type="radio"]#yellow {
  --radio-color: #fec733;
}
.color-picker input[type="radio"]#green {
  --radio-color: #59dea2;
}

/* Theme colors */
html.red-theme {
  --themes: #ec4555;
}
html.yellow-theme {
  --themes: #fec733;
}
html.green-theme {
  --themes: #59dea2;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* Interactions */
section:hover,
.my-works:hover {
  border-color: var(--themes);
}
#profile-image {
  border: 3px solid var(--themes);
}
